github.com/klauspost/compress/flate.huffmanBitWriter.bits (field)
15 uses
github.com/klauspost/compress/flate (current package)
huffman_bit_writer.go#L106: bits uint64
huffman_bit_writer.go#L158: w.bits, w.nbits, w.nbytes, w.err = 0, 0, 0, nil
huffman_bit_writer.go#L204: w.bytes[n] = byte(w.bits)
huffman_bit_writer.go#L205: w.bits >>= 8
huffman_bit_writer.go#L213: w.bits = 0
huffman_bit_writer.go#L228: w.bits |= uint64(b) << (w.nbits & 63)
huffman_bit_writer.go#L245: w.bytes[n] = byte(w.bits)
huffman_bit_writer.go#L246: w.bits >>= 8
huffman_bit_writer.go#L423: w.bits |= c.code64() << (w.nbits & 63)
huffman_bit_writer.go#L432: bits := w.bits
huffman_bit_writer.go#L433: w.bits >>= 48
huffman_bit_writer.go#L846: bits, nbits, nbytes := w.bits, w.nbits, w.nbytes
huffman_bit_writer.go#L966: w.bits, w.nbits, w.nbytes = bits, nbits, nbytes
huffman_bit_writer.go#L1092: bits, nbits, nbytes := w.bits, w.nbits, w.nbytes
huffman_bit_writer.go#L1158: w.bits, w.nbits, w.nbytes = bits, nbits, nbytes
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |